home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 October / PCWorld_2001-10_cd.bin / Software / Vyzkuste / context / ConTEXTsetup.exe / {app} / Template / ObjectPascal.ctpl < prev   
INI File  |  2000-12-01  |  2KB  |  135 lines

  1. [arrayc | array declaration (const)]
  2. array[0..|] of = ();
  3.  
  4. [arrayd | array declaration (var)]
  5. array[0..|] of ;
  6.  
  7. [casee | case statement (with else)]
  8. case | of
  9.   : ;
  10.   : ;
  11. else ;
  12. end;
  13.  
  14. [cases | case statement]
  15. case | of
  16.   : ;
  17.   : ;
  18. end;
  19.  
  20. [classc | class declaration (with Create/Destroy overrides)]
  21. T| = class(T)
  22. private
  23.  
  24. protected
  25.  
  26. public
  27.   constructor Create; override;
  28.   destructor Destroy; override;
  29. published
  30.  
  31. end;
  32.  
  33. [classd | class declaration (no parts)]
  34. T| = class(T)
  35.  
  36. end;
  37.  
  38. [classf | class declaration (all parts)]
  39. T| = class(T)
  40. private
  41.  
  42. protected
  43.  
  44. public
  45.  
  46. published
  47.  
  48. end;
  49.  
  50. [forb | for statement]
  51. for | :=  to  do
  52. begin
  53.  
  54. end;
  55.  
  56. [fors | for (no begin/end)]
  57. for | :=  to  do
  58.  
  59. [function | function declaration]
  60. function |(): ;
  61. begin
  62.  
  63. end;
  64.  
  65. [ifb | if statement]
  66. if | then
  67. begin
  68.  
  69. end;
  70.  
  71. [ife | if then (no begin/end) else (no begin/end)]
  72. if | then
  73.  
  74. else
  75.  
  76. [ifeb | if then else]
  77. if | then
  78. begin
  79.  
  80. end
  81. else
  82. begin
  83.  
  84. end;
  85.  
  86. [ifs | if (no begin/end)]
  87. if | then
  88.  
  89. [procedure | procedure declaration]
  90. procedure |();
  91. begin
  92.  
  93. end;
  94.  
  95. [trycf | try finally (with Create/Free)]
  96. |variable := typename.Create;
  97. try
  98.  
  99. finally
  100.   variable.Free;
  101. end;
  102.  
  103. [trye | try except]
  104. try
  105.   |
  106. except
  107.  
  108. end;
  109.  
  110. [tryf | try finally]
  111. try
  112.   |
  113. finally
  114.  
  115. end;
  116.  
  117. [whileb | while statement]
  118. while | do
  119. begin
  120.  
  121. end;
  122.  
  123. [whiles | while (no begin)]
  124. while | do
  125.  
  126. [withb | with statement]
  127. with | do
  128. begin
  129.  
  130. end;
  131.  
  132. [withs | with (no begin)]
  133. with | do
  134.  
  135.